type github.com/refraction-networking/utls.prng

17 uses

	github.com/refraction-networking/utls (current package)
		u_parrots.go#L3160: func removeRandomCiphers(r *prng, s []uint16, maxRemovalProbability float64) []uint16 {
		u_parrots.go#L3181: func shuffledCiphers(r *prng) ([]uint16, error) {
		u_prng.go#L68: type prng struct {
		u_prng.go#L75: func newPRNG() (*prng, error) {
		u_prng.go#L84: func newPRNGWithSeed(seed *PRNGSeed) (*prng, error) {
		u_prng.go#L90: 	p := &prng{
		u_prng.go#L99: func newPRNGWithSaltedSeed(seed *PRNGSeed, salt string) (*prng, error) {
		u_prng.go#L109: func (p *prng) Read(b []byte) (int, error) {
		u_prng.go#L121: func (p *prng) Int63() int64 {
		u_prng.go#L127: func (p *prng) Uint64() uint64 {
		u_prng.go#L135: func (p *prng) Seed(_ int64) {
		u_prng.go#L145: func (p *prng) FlipWeightedCoin(weight float64) bool {
		u_prng.go#L155: func (p *prng) Intn(n int) int {
		u_prng.go#L164: func (p *prng) Int63n(n int64) int64 {
		u_prng.go#L172: func (p *prng) Perm(n int) []int {
		u_prng.go#L178: func (p *prng) Range(min, max int) int {
		u_roller.go#L15: 	r                   *prng